Discover gists
| <?php | |
| declare(strict_types=1); | |
| class BaseConverter | |
| { | |
| /** | |
| * The character set used for base conversion. | |
| * Includes digits 0-9 and lowercase and uppercase letters A-Z. | |
| * The minimum base is 2 and the maximum base is 62. |
A searchable collection of messages returned by Blizzard's public partial-capture endpoint, including the original binary strings, ASCII decodings, and all 30 sampled response bodies.
Following the discoveries shared by u/RaiausderDose and u/beyond1sgrasp in this r/starcraft discussion. This collection independently retrieves the endpoint data; it does not claim the original discovery.
- 30 requests, 8 distinct messages. Each response contained 1–4 messages. The final 25 requests added no new messages.
- Collection window: 2026-09-03 19:49:12–19:49:53 UTC (September 4 in UTC+7).
Just run the following JavaScript bookmarklet on https://www.microsoft.com/en-us/software-download/windows10 to reveal all Windows versions.
$("select#product-edition").html("<option value selected value='selected'>Select edition</option><option value='2'>Windows 7 Home Basic SP1 </option><option value='4'>Windows 7 Professional SP1 </option><option value='6'>Windows 7 Home Premium SP1 </option><option value='8'>Windows 7 Ultimate SP1 </option><option value='10'>Windows 7 Home Premium N SP1 </option><option value='12'>Windows 7 Professional N SP1 </option><option value='14'>Windows 7 Ultimate N SP1 </option><option value='16'>Windows 7 Professional K SP1 </option><option value='18'>Windows 7 Professional KN SP1 </option><option value='20'>Windows 7 Home Premium K SP1 </option><option value='22'>Windows 7 Home Premium KN SP1 </option><option value='24'>Windows 7 Ultimate KN SP1 </option><option value='26'>Windows 7 Ultimate K SP1 </option><option value='28'>Windows 7 Starter SP1 </option><option value
I assembled a super quick cheatsheet of the most common Pandas, Numpy and Python tasks I tend to do. Let me know if I missed anything important in the comments below!
1 Data Structures1.1 Lists[]1.1.1 List Comprehensions - (do.. for)| #!/usr/bin/env bash | |
| # castanet.sh: Script to connect a chromecast to a WiFi network. | |
| # | |
| # Allows you to put your Chromecast on WiFi and do Chromecast initial setup | |
| # without using the Google Home app at all, just using a normal Linux computer. | |
| # | |
| # You do need your Chromecast to be on Ethernet, or (untested) to join its setup WiFi | |
| # network with your PC, and you also need to find out its IP yourself with e.g. | |
| # Wireshark. |
| Engine | Contact |
|---|---|
| 360 | kefu@360.cn |
| Abusix | support@abusix.com, https://lookup.abusix.com/ |
| Acronis | virustotal-falsepositive@acronis.com |
| ADMINUSLabs | info@adminuslabs.net, samples@adminus.net, falsepositive@adminuslabs.net |
| AegisLab | support@aegislab.com |
| Ahnlab | e-support@ahnlab.com, samples@ahnlab.com |
| AILabs (Monitorapp) | aicc@monitorapp.com |
| Alibaba | virustotal@list.alibaba-inc.com |
| 1. Nagłówek (Header) | |
| Adrian Wierzchowski | |
| Power Platform & Automation Consultant | |
| (lub: Automation Engineer / Junior Technical Consultant) | |
| 2. Podsumowanie (Summary) | |
| Adrian is an IT and automation specialist with over 2 years of commercial experience in designing end-to-end low-code workflows and enterprise integrations. His expertise spans the Microsoft Power Platform ecosystem (Power Automate, Power Apps, Copilot Studio), REST API integrations, and database design (Dataverse, MS SQL), coupled with modern software engineering background in .NET and C#. |
Essentially just copy the existing video and audio stream as is into a new container, no funny business!
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
